home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / NT / CODE / CHAP13 / WANDERER / WANDERER.RC < prev   
Text File  |  1996-04-05  |  1KB  |  39 lines

  1. //***********************************************************************
  2. //
  3. //  Wanderer.rc
  4. //
  5. //***********************************************************************
  6.  
  7. #include <afxres.h>
  8. #include "Resource.h"
  9.  
  10. IDR_DRIVEIMAGES BITMAP Drives.bmp
  11. IDR_LARGEDOC    BITMAP Large.bmp
  12. IDR_SMALLDOC    BITMAP Small.bmp
  13.  
  14. IDR_MAINFRAME MENU
  15. BEGIN
  16.     POPUP "&Options" {
  17.         MENUITEM "Large &Icon View",    ID_VIEW_LARGE_ICON
  18.         MENUITEM "&Small Icon View",    ID_VIEW_SMALL_ICON
  19.         MENUITEM "&List View",          ID_VIEW_LIST
  20.         MENUITEM "&Report View",        ID_VIEW_REPORT
  21.         MENUITEM SEPARATOR
  22.         MENUITEM "E&xit",               ID_APP_EXIT
  23.     }
  24. END
  25.  
  26. STRINGTABLE
  27. BEGIN
  28.     IDR_MAINFRAME       "Wanderer"
  29.  
  30.     AFX_IDS_IDLEMESSAGE "Ready"
  31.     AFX_IDS_SCCLOSE     "Terminate the application"
  32.  
  33.     ID_VIEW_LARGE_ICON  "Switch to large icon view"
  34.     ID_VIEW_SMALL_ICON  "Switch to small icon view"
  35.     ID_VIEW_LIST        "Switch to list view"
  36.     ID_VIEW_REPORT      "Switch to report view"
  37.     ID_APP_EXIT         "Terminate the application"
  38. END
  39.